home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: Documentize.bed 1.0 (2.1.96)
- **
- ** Removes the linefeeds within each paragraph
- ** Useful for importing documents into wordprocessors or DTP programs
- **
- ** Written by Denny Atkin
- ** Modified by Martin Taillefer
- ** Modified by Marco Negri
- */
-
- OPTIONS RESULTS
-
- SetDisplayLock ON
- SetInputLock ON
-
- SetStatusBar 'This may take a while on large files...'
-
- GetPrefs LeftMargin
- left = RESULT
- GetPrefs RightMargin
- right = RESULT
-
- SetPrefs LeftMargin 0
- SetPrefs RightMargin 32000
-
- MoveSOF
-
- RecordMacro QUIET
- FormatParagraph
- EndMacro
-
- PlayMacro 0
-
- SetPrefs LeftMargin left
- SetPrefs RightMargin right
-
- MoveSOF
-
- SetDisplayLock OFF
- SetInputLock OFF
-